body {
    background-image: url(images/starfield.png);
    background-size: contain;
    width: 100%;
    height: 100%;
    font-family: 'Verdana', sans-serif;
    color: greenyellow;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr;
    grid-template-rows: 60px 2000px 250px;
}

.topbar {
    grid-column-start: 1;
    grid-column-end: 4;
    border: 3px solid;
    border-color: black;
    height: 45px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-radius: 20px 20px 20px 20px;
}

#indieweb {
   transform: translate(0px, 5px);
    scale: 1.025;
    background-color: #690069
}

.barbutton {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-decoration: none;
    color: greenyellow;
    cursor: pointer;
    background-color: purple;
    border: 3px solid;
    border-color: mediumpurple;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.barbutton:hover{
    background-color: mediumpurple;
    border-color: purple;
    color: lawngreen;
}

.comicbutton {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    text-decoration: none;
    font-size: 1.40em;
    color: white;
    -webkit-text-stroke: 1px black;
    cursor: pointer;
    background-image: url(/images/rainbow.gif);
    border: 3px solid;
    border-color: mediumpurple;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.comicbutton:hover{
    width: 105%;
    height: 105%;
    border-color: white;
    color: black;
    -webkit-text-stroke: 1px white;
}

.hub {
    width: 100%;
    height: 100%;
    background-color: purple;
    border: 3px solid;
    border-color: mediumpurple;
    border-radius: 20px 0px 0px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color:greenyellow;
    cursor: pointer;
}

.hub:hover{
    background-color: mediumpurple;
    border-color: purple;
    color: lawngreen;
}

.indieweb {
    width: 100%;
    height: 100%;
    background-color: purple;
    border: 3px solid;
    border-color: mediumpurple;
    border-radius: 0px 20px 20px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color:greenyellow;
    cursor: pointer;
}

.indieweb:hover{
    background-color: mediumpurple;
    border-color: purple;
    color: lawngreen;
}

.main {
    grid-column-start: 2;
    grid-row-start: 2;
    width: 100%;
    background-color: darkblue;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.neighborbar {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: deepskyblue;
    padding: 10px;
    flex-wrap: wrap;
}

.biggoose {
    width: 88px;
    height: 31px;
}